func runtime.nanotime

73 uses

	runtime (current package)
		cpuprof.go#L88: 		cpuprof.log.write(nil, nanotime(), hdr[:], nil)
		cpuprof.go#L122: 		cpuprof.log.write(tagPtr, nanotime(), hdr[:], stk)
		debuglog.go#L57: 	tick, nano := uint64(cputicks()), uint64(nanotime())
		lock_futex.go#L206: 	deadline := nanotime() + ns
		lock_futex.go#L220: 		now := nanotime()
		mfinal.go#L307: 	start := nanotime()
		mfinal.go#L308: 	for nanotime()-start < timeout {
		mgc.go#L304: 	now := nanotime()
		mgc.go#L711: 	now := nanotime()
		mgc.go#L788: 	work.cpuStats.accumulateGCPauseTime(nanotime()-stw.finishedStopping, work.maxprocs)
		mgc.go#L921: 	now := nanotime()
		mgc.go#L960: 			work.cpuStats.accumulateGCPauseTime(nanotime()-stw.finishedStopping, work.maxprocs)
		mgc.go#L1013: 	startTime := nanotime()
		mgc.go#L1086: 	now := nanotime()
		mgc.go#L1459: 		startTime := nanotime()
		mgc.go#L1514: 		now := nanotime()
		mgcmark.go#L638: 	startTime := nanotime()
		mgcmark.go#L682: 	now := nanotime()
		mgcpacer.go#L741: 		now = nanotime()
		mgcscavenge.go#L394: 			start := nanotime()
		mgcscavenge.go#L396: 			end := nanotime()
		mgcscavenge.go#L499: 		start := nanotime()
		mgcscavenge.go#L507: 		slept = nanotime() - start
		mheap.go#L1319: 		start := nanotime()
		mheap.go#L1330: 		now = nanotime()
		mprof.go#L693: 		lt.timeStart = nanotime()
		mprof.go#L705: 		nowTime := nanotime()
		netpoll.go#L381: 		d += nanotime()
		preempt.go#L229: 				now := nanotime()
		preempt.go#L245: 			nextYield = nanotime() + yieldDelay
		preempt.go#L247: 		if nanotime() < nextYield {
		preempt.go#L251: 			nextYield = nanotime() + yieldDelay/2
		proc.go#L191: 	runtimeInitTime = nanotime()
		proc.go#L343: 		gcStart(gcTrigger{kind: gcTriggerTime, now: nanotime()})
		proc.go#L857: 	sched.lastpoll.Store(nanotime())
		proc.go#L1202: 			nextYield = nanotime() + yieldDelay
		proc.go#L1204: 		if nanotime() < nextYield {
		proc.go#L1210: 			nextYield = nanotime() + yieldDelay/2
		proc.go#L1235: 		now := nanotime()
		proc.go#L1248: 		now := nanotime()
		proc.go#L1259: 		now := nanotime()
		proc.go#L1264: 		now := nanotime()
		proc.go#L1552: 	start := nanotime() // exclude time waiting for sched.lock from start and total time metrics.
		proc.go#L1569: 			pp.gcStopTime = nanotime()
		proc.go#L1578: 	now := nanotime()
		proc.go#L1585: 		pp.gcStopTime = nanotime()
		proc.go#L1603: 	finish := nanotime()
		proc.go#L1704: 		now = nanotime()
		proc.go#L3038: 		pp.gcStopTime = nanotime()
		proc.go#L3191: 	pp.gcStopTime = nanotime()
		proc.go#L3570: 				now = nanotime()
		proc.go#L3583: 		now = nanotime()
		proc.go#L4518: 		pp.gcStopTime = nanotime()
		proc.go#L5699: 	now := nanotime()
		proc.go#L6080: 		now := nanotime()
		proc.go#L6118: 		now = nanotime()
		proc.go#L6335: 	now := nanotime()
		proc.go#L6599: 		now = nanotime()
		proc.go#L6628: 			now = nanotime()
		proc.go#L7277: 			start = nanotime()
		proc.go#L7295: 			end := nanotime()
		rand.go#L75: 	v := uint64(nanotime())
		runtime.go#L33: 	t.startTime = nanotime()
		runtime.go#L94: 		nowTime := nanotime()
		sema.go#L692: 	return nanotime()
		time.go#L295: 	when := nanotime() + ns
		time.go#L411: 		if now := nanotime(); t.when <= now {
		time.go#L906: 		now = nanotime()
		time.go#L1307: 	now := nanotime()
		time_nofake.go#L32: func nanotime() int64 {
		trace.go#L1012: 	s.timer.reset(nanotime()+ns, 0)
		traceback.go#L1221: 		waitfor = (nanotime() - gp.waitsince) / 60e9
		tracetime.go#L60: 	return traceTime(nanotime() / traceTimeDiv)